5fa61c3b5313c07350287200bb1804b9ef6ade7a,src/mrmc/chart/exportToFile.java,exportToFile,exportReaders,#String#DBRecord#InputFile#String#,1142
Before Change
str = str + eightDecE.format(StatDBRecord.AUCs[i][1]) + SEPA;
str = str + eightDecE.format(Math.sqrt(StatDBRecord.readerVarB[i])) + SEPA;
str = str + eightDecE.format(StatDBRecord.AUCs[i][0]-StatDBRecord.AUCs[i][1]) + SEPA;
str = str + eightDecE.format(Math.sqrt(StatDBRecord.readerTotalVar[i])) + SEPA;
}
i++;
str = str +"NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA" + "\r\n";
After Change
if (StatDBRecord.selectedMod == 0){
str = str + eightDecE.format(StatDBRecord.AUCs[i][0]) + SEPA;
//str = str + eightDecE.format(Math.sqrt(StatDBRecord.readerVarA[i])) + SEPA;
str = str + (Double.isNaN(StatDBRecord.readerVarA[i])? "NA": eightDecE.format(StatDBRecord.readerVarA[i])) + SEPA;
str = str +"NA,NA,NA,NA" + SEPA;
}else if (StatDBRecord.selectedMod == 1){
str = str +"NA,NA" + SEPA;
str = str + eightDecE.format(StatDBRecord.AUCs[i][1]) + SEPA;
//str = str + eightDecE.format(Math.sqrt(StatDBRecord.readerVarB[i])) + SEPA;
str = str + (Double.isNaN(StatDBRecord.readerVarB[i])? "NA": eightDecE.format(StatDBRecord.readerVarB[i])) + SEPA;
str = str +"NA,NA" + SEPA;
} else {
str = str + eightDecE.format(StatDBRecord.AUCs[i][0]) + SEPA;
//str = str + eightDecE.format(Math.sqrt(StatDBRecord.readerVarA[i])) + SEPA;
str = str + (Double.isNaN(StatDBRecord.readerVarA[i])? "NA": eightDecE.format(StatDBRecord.readerVarA[i])) + SEPA;
str = str + eightDecE.format(StatDBRecord.AUCs[i][1]) + SEPA;
//str = str + eightDecE.format(Math.sqrt(StatDBRecord.readerVarB[i])) + SEPA;
str = str + (Double.isNaN(StatDBRecord.readerVarB[i])? "NA": eightDecE.format(StatDBRecord.readerVarB[i])) + SEPA;
str = str + eightDecE.format(StatDBRecord.AUCs[i][0]-StatDBRecord.AUCs[i][1]) + SEPA;
//str = str + eightDecE.format(Math.sqrt(StatDBRecord.readerTotalVar[i])) + SEPA;
str = str + (Double.isNaN(StatDBRecord.readerTotalVar[i])? "NA": eightDecE.format(StatDBRecord.readerTotalVar[i])) + SEPA;
}
i++;
str = str +"NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA" + "\r\n";